home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / mee / vbdao / visdata / aboutbox.frm (.txt) next >
Encoding:
Visual Basic Form  |  1994-10-06  |  3.2 KB  |  107 lines

  1. VERSION 2.00
  2. Begin Form AboutBox 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "About Visual Data"
  6.    ClientHeight    =   2175
  7.    ClientLeft      =   2190
  8.    ClientTop       =   2550
  9.    ClientWidth     =   5055
  10.    ControlBox      =   0   'False
  11.    FontBold        =   -1  'True
  12.    FontItalic      =   0   'False
  13.    FontName        =   "System"
  14.    FontSize        =   9.75
  15.    FontStrikethru  =   0   'False
  16.    FontUnderline   =   0   'False
  17.    Height          =   2580
  18.    Icon            =   0
  19.    Left            =   2130
  20.    LinkMode        =   1  'Source
  21.    LinkTopic       =   "Form1"
  22.    MaxButton       =   0   'False
  23.    MinButton       =   0   'False
  24.    ScaleHeight     =   2175
  25.    ScaleWidth      =   5055
  26.    Top             =   2205
  27.    Width           =   5175
  28.    Begin PictureBox Picture1 
  29.       BackColor       =   &H00C0C0C0&
  30.       BorderStyle     =   0  'None
  31.       Height          =   1335
  32.       Left            =   1080
  33.       ScaleHeight     =   1335
  34.       ScaleWidth      =   3375
  35.       TabIndex        =   2
  36.       Tag             =   "OLR"
  37.       Top             =   120
  38.       Width           =   3375
  39.       Begin Label Label1 
  40.          Alignment       =   2  'Center
  41.          BackColor       =   &H00C0C0C0&
  42.          Caption         =   "Version 3.10"
  43.          Height          =   210
  44.          Left            =   360
  45.          TabIndex        =   3
  46.          Top             =   960
  47.          Width           =   2535
  48.       End
  49.       Begin Label LAB_2 
  50.          Alignment       =   2  'Center
  51.          BackColor       =   &H00C0C0C0&
  52.          Caption         =   "Visual Data Sample Application"
  53.          Height          =   255
  54.          Left            =   240
  55.          TabIndex        =   4
  56.          Top             =   720
  57.          Width           =   2895
  58.       End
  59.       Begin Label LAB_1 
  60.          Alignment       =   2  'Center
  61.          BackColor       =   &H00C0C0C0&
  62.          Caption         =   "Microsoft Visual Basic Pro"
  63.          Height          =   270
  64.          Left            =   360
  65.          TabIndex        =   5
  66.          Top             =   240
  67.          Width           =   2535
  68.       End
  69.    End
  70.    Begin PictureBox PIC_Icon 
  71.       BackColor       =   &H00C0C0C0&
  72.       BorderStyle     =   0  'None
  73.       Height          =   600
  74.       Left            =   240
  75.       Picture         =   ABOUTBOX.FRX:0000
  76.       ScaleHeight     =   600
  77.       ScaleWidth      =   480
  78.       TabIndex        =   1
  79.       Top             =   240
  80.       Width           =   480
  81.    End
  82.    Begin CommandButton OkayButton 
  83.       Cancel          =   -1  'True
  84.       Caption         =   "&OK"
  85.       Default         =   -1  'True
  86.       Height          =   360
  87.       Left            =   2040
  88.       TabIndex        =   0
  89.       Top             =   1680
  90.       Width           =   1080
  91.    End
  92. Sub Form_KeyPress (KeyAscii As Integer)
  93.   Unload Me
  94. End Sub
  95. Sub Form_Load ()
  96.   Left = (Screen.Width - Width) / 2
  97. End Sub
  98. Sub Form_Paint ()
  99.   Outlines Me
  100. End Sub
  101. Sub OkayButton_Click ()
  102.   Unload Me
  103. End Sub
  104. Sub OkayButton_KeyPress (KeyAscii As Integer)
  105.   Unload Me
  106. End Sub
  107.